home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / vcsdemo / vcsdemo.dpr < prev    next >
Text File  |  1995-12-22  |  421b  |  27 lines

  1. library VcsDemo;
  2.  
  3.  
  4. uses
  5.   WinTypes,
  6.   VcsIntf,
  7.   ToolIntf,
  8.   Vcsmain in 'VCSMAIN.PAS',
  9.   Files in 'FILES.PAS' {FilesDlg},
  10.   About in 'ABOUT.PAS' {AboutBox};
  11.  
  12.  
  13. {$R *.RES}
  14.  
  15. function InitVCS(VCSInterface: TIToolServices): TIVCSClient; export;
  16. begin
  17.   Result := TMyVCSClient.Create;
  18.   TMyVCSClient(Result).Init(VCSInterface);
  19. end;
  20.  
  21. exports
  22.   InitVCS name VCSManagerEntryPoint resident;
  23.  
  24. begin
  25. end.
  26.  
  27.